{
  "type" : "object",
  "$schema" : "http://json-schema.org/draft-03/schema#",
  "properties" : {
    "interfaceCategory" : {
      "type" : "string",
      "required" : true,
      "description" : "CMP categorisation of the job associated with this file.",
      "enum" : [ "Provisioning" ]
    },
    "interfaceType" : {
      "type" : "string",
      "required" : true,
      "description" : "Sub-categorisation of the job",
      "enum" : [ "Bill Cycle Change" ]
    },
    "extractDateTime" : {
      "type" : "string",
      "description" : "Represents when a third-party file was extracted by CMP",
      "format" : "date-time"
    },
    "version" : {
      "type" : "number",
      "required" : true,
      "description" : "The current version of the generic extract file. This must match the corresponding outbound file.",
      "maximum" : 1.0,
      "minimum" : 1.0
    },
    "actionItemNumber" : {
      "type" : "integer",
      "required" : true,
      "description" : "This value identifies a action in CMP"
    },
    "subscriptionId" : {
      "type" : "integer",
      "description" : "This value identifies a subscription in CMP"
    },
    "sharedGroups" : {
      "type" : "array",
      "description" : "Only populated if command associated with shared groups to be updated",
      "items" : {
        "type" : "object",
        "properties" : {
          "sharedGroupId" : {
            "type" : "integer",
            "description" : "Identifies the group in CMP, if applicable, that the allowance relates to"
          },
          "ocsSharedGroupId" : {
            "type" : "string",
            "description" : "Identifies the group at the network, if applicable, that the allowance relates to"
          }
        }
      }
    }
  }
}